home *** CD-ROM | disk | FTP | other *** search
/ Micro Dingo 39 / Micro_Dingo_39_CD1.mdx / Delires / Hentai / sim.swf / scripts / DefineButton2_262 / BUTTONCONDACTION on(release, keyPress d).as
Text File  |  2002-05-21  |  333b  |  22 lines

  1. on(release, keyPress "d"){
  2.    luck = random(100);
  3.    if(hp >= 35)
  4.    {
  5.       if(luck < 20)
  6.       {
  7.          gotoAndStop(219);
  8.       }
  9.       else
  10.       {
  11.          wage = Number(st * 5);
  12.          money += wage;
  13.          hp -= 35;
  14.          gotoAndPlay(188);
  15.       }
  16.    }
  17.    else
  18.    {
  19.       gotoAndStop(218);
  20.    }
  21. }
  22.